401a5cf5408bccf4729e849462157f99da94de48,plugins/properties/properties-psi-impl/src/com/intellij/lang/properties/PropertiesImplUtil.java,PropertiesImplUtil,getResourceBundle,#PropertiesFile#,46

Before Change


        return containingFile.getContainingDirectory();
      }});
    if (directory == null) return EmptyResourceBundle.getInstance();
    return getResourceBundle(baseName, directory);
  }

  @Nullable

After Change


        return containingFile.getContainingDirectory();
      }});
    if (directory == null) return EmptyResourceBundle.getInstance();
    final ResourceBundle bundle = getResourceBundle(baseName, directory);
    return bundle == null ? new ResourceBundleImpl(representative) : bundle;
  }

  @Nullable